Show AllShow All

PresetTexture Property

Returns the preset texture for the specified fill. Read-only MsoPresetTexture.

expression.PresetTexture

expression    Required. An expression that returns one of the objects in the Applies To list.

This property is read-only. Use the PresetTextured method to set the preset texture for the fill.

Example

This example changes the chart's textured fill format from oak to walnut.

With myChart.ChartArea.Fill
    If .Type = msoFillTextured Then
        If .TextureType = msoTexturePreset Then
            If .PresetTexture = msoTextureOak Then
                .PresetTextured msoTextureWalnut
            End If
        End If
    End If
End With